home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / util / moni / Scout-src.lha / src / objects / scout_extras.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-09  |  2.3 KB  |  86 lines

  1. /**
  2.  * Scout - The Amiga System Monitor
  3.  *
  4.  *------------------------------------------------------------------
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * You must not use this source code to gain profit of any kind!
  21.  *
  22.  *------------------------------------------------------------------
  23.  *
  24.  * @author Andreas Gelhausen
  25.  * @author Richard Körber <rkoerber@gmx.de>
  26.  */
  27.  
  28.  
  29.  
  30. #ifndef SCOUT_EXTRAS_H
  31. #define SCOUT_EXTRAS_H
  32.  
  33. /* System */
  34. //#include <clib/nipc_pragmas.h>
  35. //#include <clib/nipc_protos.h>
  36. //#include <clib/socket_protos.h>
  37. #include <exec/execbase.h>
  38. #include <exec/memory.h>
  39. #include <exec/types.h>
  40. #include <graphics/gfxbase.h>
  41. #include <intuition/intuitionbase.h>
  42. #include <intuition/sghooks.h>
  43. #include <utility/hooks.h>
  44.  
  45. /* Prototypes */
  46. #include <proto/dos.h>
  47. #include <proto/exec.h>
  48. #include <proto/intuition.h>
  49. #include <proto/muimaster.h>
  50.  
  51. /* ANSI C */
  52. #include <ctype.h>
  53. #include <stdlib.h>
  54. #include <string.h>
  55. #include <stdio.h>
  56. #include <stdarg.h>
  57.  
  58. /* MUI */
  59. #include <libraries/mui.h>
  60.  
  61. /* PROJECT */
  62. #include "/startup_defs.h"
  63. #include "/startup_protos.h"
  64. #include "/scout_defs.h"
  65. #include "/scout_net_protos.h"
  66. #include "/scout_protos.h"
  67. #include "scout_arexx_protos.h"
  68. #include "scout_asm_protos.h"
  69. #include "scout_assigns_protos.h"
  70. #include "scout_commands_protos.h"
  71. #include "scout_expansions_protos.h"
  72. #include "scout_extras_protos.h"
  73. #include "scout_fonts_protos.h"
  74. #include "scout_libs_protos.h"
  75. #include "scout_locks_protos.h"
  76. #include "scout_mount_protos.h"
  77. #include "scout_ports_protos.h"
  78. #include "scout_semaphores_protos.h"
  79. #include "scout_tasks_protos.h"
  80. #include "scout_windows_protos.h"
  81. #include "scout_commodity_protos.h"
  82. #include "scout_classes_protos.h"
  83. #include "scout_screenmode_protos.h"
  84.  
  85. #endif /* SCOUT_EXTRAS_H */
  86.